home *** CD-ROM | disk | FTP | other *** search
/ The Epic Interactive Encyclopedia 1998 / Epic Interactive Encyclopedia, The - 1998 Edition (1998)(Epic Marketing).iso / R / Recursion / INFOTEXT < prev   
Text File  |  1992-09-02  |  271b  |  8 lines

  1. In computing, technique whereby a function or
  2. procedure calls itself, enabling a complex
  3. problem to be broken down into simpler steps.
  4. For example, a function which returns the
  5. factorial of a number, n, would obtain its
  6. result by multiplying n by the factorial of n
  7. - 1.
  8.